home *** CD-ROM | disk | FTP | other *** search
- comment #
-
- +----------------------------------------------------------------------+
- | |
- | QBWiz Copyright (c) 1990-1992 Thomas G. Hanlin III |
- | |
- | QuickBasic Access Library |
- | |
- +----------------------------------------------------------------------+
-
- #
-
- public ACTPAGE, VISPAGE
-
-
- .model medium
-
- .code
-
-
-
- ACTPAGE proc ; get active display page
- xor ax,ax
- mov al,b$ActPage
- ret
- ACTPAGE endp ; get active display page
-
-
-
- VISPAGE proc ; get visible display page
- xor ax,ax
- mov al,b$VisPage
- ret
- VISPAGE endp ; get visible display page
-
-
-
- .data
-
- extrn b$ActPage: byte
- extrn b$VisPage: byte
-
-
-
- end
-